home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / lang / FPL_v147.lha / fpl / funclib / test.fpl < prev   
Text File  |  1994-05-02  |  179b  |  16 lines

  1. export int Lazer()
  2. {
  3.   return 1994;
  4. }
  5.  
  6.  
  7. if(!openlib("func", 2)) {
  8.  
  9.   output( libTest() );
  10.  
  11.   closelib("func");
  12. } else
  13.   output("Failed to open the \"func\" funclib!\n");
  14.  
  15. return;
  16.